Compare commits

...

2 commits

4 changed files with 24 additions and 28 deletions

View file

@ -73,43 +73,43 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1726989464, "lastModified": 1731880681,
"narHash": "sha256-Vl+WVTJwutXkimwGprnEtXc/s/s8sMuXzqXaspIGlwM=", "narHash": "sha256-FmYTkIyPBUxSWgA7DPIVTsCCMvSSbs56yOtHpLNSnKg=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "2f23fa308a7c067e52dfcc30a0758f47043ec176", "rev": "aecd341dfead1c3ef7a3c15468ecd71e8343b7c6",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nix-community", "owner": "nix-community",
"ref": "release-24.05", "ref": "release-24.11",
"repo": "home-manager", "repo": "home-manager",
"type": "github" "type": "github"
} }
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1730963269, "lastModified": 1731755305,
"narHash": "sha256-rz30HrFYCHiWEBCKHMffHbMdWJ35hEkcRVU0h7ms3x0=", "narHash": "sha256-v5P3dk5JdiT+4x69ZaB18B8+Rcu3TIOrcdG4uEX7WZ8=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "83fb6c028368e465cd19bb127b86f971a5e41ebc", "rev": "057f63b6dc1a2c67301286152eb5af20747a9cb4",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nixos", "owner": "nixos",
"ref": "nixos-24.05", "ref": "nixos-24.11",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1731139594, "lastModified": 1731676054,
"narHash": "sha256-IigrKK3vYRpUu+HEjPL/phrfh7Ox881er1UEsZvw9Q4=", "narHash": "sha256-OZiZ3m8SCMfh3B6bfGC/Bm4x3qc1m2SVEAlkV6iY7Yg=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "76612b17c0ce71689921ca12d9ffdc9c23ce40b2", "rev": "5e4fbfb6b3de1aa2872b76d49fafc942626e2add",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -1,9 +1,9 @@
{ {
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05"; nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable"; nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager = { home-manager = {
url = "github:nix-community/home-manager/release-24.05"; url = "github:nix-community/home-manager/release-24.11";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
agenix = { agenix = {

View file

@ -5,7 +5,11 @@
nix = { nix = {
settings = { settings = {
trusted-users = [ "@wheel" "root" ]; trusted-users = [ "@wheel" "root" ];
experimental-features = lib.mkDefault [ "nix-command" "flakes" ]; experimental-features = lib.mkDefault [
"nix-command"
"flakes"
"pipe-operators"
];
auto-optimise-store = true; auto-optimise-store = true;
}; };
@ -51,12 +55,8 @@
polkit.enable = true; polkit.enable = true;
}; };
networking.firewall.enable = true;
time.timeZone = "America/Detroit"; time.timeZone = "America/Detroit";
i18n.defaultLocale = "en_US.UTF-8";
programs = { programs = {
git.enable = true; git.enable = true;
htop.enable = true; htop.enable = true;

View file

@ -5,7 +5,11 @@
nix = { nix = {
settings = { settings = {
trusted-users = [ "@wheel" "root" ]; trusted-users = [ "@wheel" "root" ];
experimental-features = lib.mkDefault [ "nix-command" "flakes" ]; experimental-features = lib.mkDefault [
"nix-command"
"flakes"
"pipe-operators"
];
auto-optimise-store = true; auto-optimise-store = true;
}; };
@ -38,16 +42,9 @@
polkit.enable = true; polkit.enable = true;
}; };
hardware.opengl = {
driSupport = true;
driSupport32Bit = true;
};
networking.firewall.enable = true;
time.timeZone = "America/Detroit"; time.timeZone = "America/Detroit";
i18n.defaultLocale = "en_US.UTF-8"; hardware.graphics.enable32Bit = true;
programs = { programs = {
git.enable = true; git.enable = true;
@ -62,7 +59,6 @@
}; };
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
rsync
xorg.libX11 xorg.libX11
xorg.xset xorg.xset
]; ];