mirror of
https://github.com/alyssadev/nixos.git
synced 2025-12-01 10:39:39 +10:00
Compare commits
8 commits
c29abd2cee
...
1742d0b4d5
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1742d0b4d5 | ||
|
|
6824909dbe | ||
|
|
7e739005d7 | ||
|
|
5d8e51e3c4 | ||
|
|
5ee696e854 | ||
|
|
806f8c6087 | ||
|
|
2a7482b129 | ||
|
|
a1ac429505 |
3 changed files with 6 additions and 10 deletions
|
|
@ -48,7 +48,6 @@
|
||||||
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,6 +8,9 @@
|
||||||
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,16 +4,10 @@
|
||||||
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 nixd
|
cargo rustc just git wget gcc gnumake autoconf automake pkg-config cifs-utils ntfs3g
|
||||||
];
|
];
|
||||||
programs.nixvim = {
|
programs.nixvim.enable = true;
|
||||||
enable = true;
|
programs.nixvim.defaultEditor = 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