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

View file

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

View file

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

View file

@ -9,12 +9,14 @@
dconf.settings = {
"org/gnome/desktop/background" = {
picture-uri = ./demand_office.jpg;
picture-uri = "file://" + ./fjord.jpg;
};
enabled-extensions = {
"org/gnome-shell" = {
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;
}

BIN
home/desktop/fjord.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 326 KiB

View file

@ -100,6 +100,9 @@
extraConfig = ''
set my_mbsync_acct='ktiu'
set mbox='+Archive'
set my_junk='+Junk'
set crypt_auto_pgp
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;
}