Compare commits

..

8 commits

Author SHA1 Message Date
alydev
1742d0b4d5 update
Some checks are pending
/ Check (push) Waiting to run
2025-10-21 16:03:15 +10:00
alydev
6824909dbe update 2025-10-21 16:01:45 +10:00
alydev
7e739005d7 update 2025-10-21 16:00:53 +10:00
alydev
5d8e51e3c4 update 2025-10-21 15:57:45 +10:00
alydev
5ee696e854 update
Some checks failed
/ Check (push) Has been cancelled
2025-10-15 18:44:53 +10:00
alydev
806f8c6087 Merge branch 'main' of github.com:alyssadev/nixos 2025-10-15 18:43:49 +10:00
alydev
2a7482b129 update 2025-10-15 18:41:59 +10:00
alydev
a1ac429505 update
Some checks failed
/ Check (push) Has been cancelled
2025-10-13 22:11:47 +10:00
3 changed files with 6 additions and 10 deletions

View file

@ -48,7 +48,6 @@
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs.gui = true;
home-manager.users.aly = import ./home/aly.nix;
home-manager.backupFileExtension = "bak";
}
];
};

View file

@ -8,6 +8,9 @@
fsType = "sshfs";
options = ["nodev,noatime,allow_other,IdentityFile=/home/aly/.ssh/id_ed25519"];
};
services.gnome = {
gnome-browser-connector.enable = true;
};
services.logind = {
lidSwitch = "suspend";
lidSwitchDocked = "ignore";

View file

@ -4,16 +4,10 @@
boot.loader.efi.canTouchEfiVariables = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
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 = {
enable = true;
defaultEditor = true;
plugins.lsp = {
enable = true;
servers.nixd.enable = true;
};
};
programs.nixvim.enable = true;
programs.nixvim.defaultEditor = true;
security.sudo.wheelNeedsPassword = false;
networking.networkmanager.enable = true;