This commit is contained in:
joygnu 2024-08-15 13:46:28 +02:00
parent bd5dc4d00f
commit 3380319be3
5 changed files with 12 additions and 10 deletions

View file

@ -142,11 +142,11 @@
},
"locked": {
"dir": "pkgs/firefox-addons",
"lastModified": 1723435406,
"narHash": "sha256-K4jgaRjQ0tfTn9qdSIq2/lzqXSP5Syy5vP0wpOwUlI0=",
"lastModified": 1723694590,
"narHash": "sha256-7cufibbD4mf84wPBOTq0bNYjtUz5/Aq1azv9Nil5bzk=",
"owner": "rycee",
"repo": "nur-expressions",
"rev": "4be5365e06d9e8aa20901bdf11d4384870dbecd6",
"rev": "bc49bde3aa2e9408a22bf62d2faf4358508ce4b6",
"type": "gitlab"
},
"original": {
@ -279,11 +279,11 @@
},
"nixpkgs_2": {
"locked": {
"lastModified": 1723175592,
"narHash": "sha256-M0xJ3FbDUc4fRZ84dPGx5VvgFsOzds77KiBMW/mMTnI=",
"lastModified": 1723637854,
"narHash": "sha256-med8+5DSWa2UnOqtdICndjDAEjxr5D7zaIiK4pn0Q7c=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "5e0ca22929f3342b19569b21b2f3462f053e497b",
"rev": "c3aa7b8938b17aebd2deecf7be0636000d62a2b9",
"type": "github"
},
"original": {

View file

@ -119,7 +119,6 @@
bind-key gg home
bind-key l open
bind-key h quit
macro y set browser "mpv %u" ; open-in-browser ; set browser "elinks %u"
'';
macro c set browser "setsid -f mpv %u &" ; open-in-browser ; set browser "elinks %u" '';
};
}

View file

@ -24,7 +24,9 @@
options = [ "fmask=0022" "dmask=0022" ];
};
swapDevices = [ ];
swapDevices = [
{ device = "/swapfile"; }
];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's

View file

@ -4,7 +4,7 @@
services.xserver.enable = true;
services.xserver.displayManager.gdm.enable = true;
services.xserver.desktopManager.gnome.enable = true;
# services.xserver.desktopManager.gnome.enable = true;
services.displayManager.autoLogin.enable = true;
services.displayManager.autoLogin.user = "joy";

View file

@ -22,6 +22,7 @@
users.defaultUserShell = pkgs.zsh;
nix.settings.experimental-features = [ "nix-command" "flakes"];
programs.nix-ld.enable = true;
services.printing.enable = true;
time.timeZone = "Europe/Zurich";
system.stateVersion = "23.11";
}