mirror of
https://github.com/alyssadev/nixos.git
synced 2025-12-01 10:39:39 +10:00
Compare commits
6 commits
1742d0b4d5
...
c29abd2cee
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c29abd2cee | ||
|
|
23a3f595f1 | ||
|
|
ff1e5205fc | ||
|
|
b067a85b19 | ||
|
|
bdb85b5df4 | ||
|
|
69fa5d2ee0 |
3 changed files with 10 additions and 6 deletions
|
|
@ -48,6 +48,7 @@
|
||||||
home-manager.useUserPackages = true;
|
home-manager.useUserPackages = true;
|
||||||
home-manager.extraSpecialArgs.gui = true;
|
home-manager.extraSpecialArgs.gui = true;
|
||||||
home-manager.users.aly = import ./home/aly.nix;
|
home-manager.users.aly = import ./home/aly.nix;
|
||||||
|
home-manager.backupFileExtension = "bak";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -8,9 +8,6 @@
|
||||||
fsType = "sshfs";
|
fsType = "sshfs";
|
||||||
options = ["nodev,noatime,allow_other,IdentityFile=/home/aly/.ssh/id_ed25519"];
|
options = ["nodev,noatime,allow_other,IdentityFile=/home/aly/.ssh/id_ed25519"];
|
||||||
};
|
};
|
||||||
services.gnome = {
|
|
||||||
gnome-browser-connector.enable = true;
|
|
||||||
};
|
|
||||||
services.logind = {
|
services.logind = {
|
||||||
lidSwitch = "suspend";
|
lidSwitch = "suspend";
|
||||||
lidSwitchDocked = "ignore";
|
lidSwitchDocked = "ignore";
|
||||||
|
|
|
||||||
|
|
@ -4,10 +4,16 @@
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
cargo rustc just git wget gcc gnumake autoconf automake pkg-config cifs-utils ntfs3g
|
cargo rustc just git wget gcc gnumake autoconf automake pkg-config cifs-utils ntfs3g nixd
|
||||||
];
|
];
|
||||||
programs.nixvim.enable = true;
|
programs.nixvim = {
|
||||||
programs.nixvim.defaultEditor = true;
|
enable = true;
|
||||||
|
defaultEditor = true;
|
||||||
|
plugins.lsp = {
|
||||||
|
enable = true;
|
||||||
|
servers.nixd.enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
security.sudo.wheelNeedsPassword = false;
|
security.sudo.wheelNeedsPassword = false;
|
||||||
|
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue