ugh nano?

This commit is contained in:
Till 2023-05-30 22:37:20 +02:00
parent b437f162c8
commit 233498a3ff
7 changed files with 32 additions and 13 deletions

12
flake.lock generated
View file

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1685189510, "lastModified": 1685438474,
"narHash": "sha256-Hq5WF7zIixojPgvhgcd6MBvywwycVZ9wpK/8ogOyoaA=", "narHash": "sha256-qQLHbg3mHYgWA3ngvWgWIdsirVkYA0StzKR3Qi72uWg=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "2d963854ae2499193c0c72fd67435fee34d3e4fd", "rev": "9f82227b64245c273d98dd02dedd44fc7576041e",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -22,11 +22,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1684935479, "lastModified": 1685383865,
"narHash": "sha256-6QMMsXMr2nhmOPHdti2j3KRHt+bai2zw+LJfdCl97Mk=", "narHash": "sha256-3uQytfnotO6QJv3r04ajSXbEFMII0dUtw0uqYlZ4dbk=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "f91ee3065de91a3531329a674a45ddcb3467a650", "rev": "5e871d8aa6f57cc8e0dc087d1c5013f6e212b4ce",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -22,7 +22,8 @@
networking.hostName = "nova"; networking.hostName = "nova";
} }
./system ./system
./system/gnome.nix # ./system/gnome.nix
./system/xfce.nix
./system/hardware-nova.nix ./system/hardware-nova.nix
]; ];
}; };

View file

@ -36,6 +36,7 @@
silver-searcher silver-searcher
tmux tmux
tree tree
unzip
# messenger # messenger
mattermost-desktop mattermost-desktop
@ -73,9 +74,14 @@
# web # web
qutebrowser qutebrowser
nyxt nyxt
vlc
chromium chromium
# media
vlc
lollypop
freetube
yt-dlp
# deveolopment # deveolopment
bundix bundix
nodejs nodejs

View file

@ -9,12 +9,14 @@
dconf.settings = { dconf.settings = {
"org/gnome/desktop/background" = { "org/gnome/desktop/background" = {
picture-uri = ./demand_office.jpg; picture-uri = "file://" + ./fjord.jpg;
};
"org/gnome-shell" = {
enabled-extensions = [
"run-or-raise@edvard.cz"
"places-menu@gnome-shell-extensions.gcampax.github.com"
];
}; };
enabled-extensions = {
"run-or-raise@edvard.cz"
"places-menu@gnome-shell-extensions.gcampax.github.com"
}
}; };
xdg.configFile."run-or-raise/shortcuts.conf".source = ./run-or-raise.conf; xdg.configFile."run-or-raise/shortcuts.conf".source = ./run-or-raise.conf;
} }

BIN
home/desktop/fjord.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 326 KiB

View file

@ -100,6 +100,9 @@
extraConfig = '' extraConfig = ''
set my_mbsync_acct='ktiu' set my_mbsync_acct='ktiu'
set mbox='+Archive'
set my_junk='+Junk'
set crypt_auto_pgp set crypt_auto_pgp
unset crypt_auto_smime unset crypt_auto_smime

7
system/xfce.nix Normal file
View file

@ -0,0 +1,7 @@
{ config, pkgs, ... }:
{
services.xserver.enable = true;
services.xserver.displayManager.lightdm.enable = true;
services.xserver.desktopManager.xfce.enable = true;
}