Compare commits

..

No commits in common. "9a0e97dd02290130be54608353b498d3cdd0a553" and "d3ab1fdd58c96f5142bb1e849508e28665adf666" have entirely different histories.

4 changed files with 28 additions and 24 deletions

View file

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

View file

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

View file

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

View file

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