Idk various stuff too lazy to list
This commit is contained in:
parent
76dd19a15c
commit
affe651726
6 changed files with 19 additions and 8 deletions
10
flake.lock
10
flake.lock
|
@ -223,9 +223,10 @@
|
|||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"id": "nixpkgs",
|
||||
"owner": "NixOS",
|
||||
"ref": "nixos-unstable",
|
||||
"type": "indirect"
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"naersk": {
|
||||
|
@ -294,9 +295,10 @@
|
|||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"id": "nixpkgs",
|
||||
"owner": "NixOS",
|
||||
"ref": "nixos-unstable",
|
||||
"type": "indirect"
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixos-hardware": {
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
|
||||
inputs =
|
||||
{
|
||||
nixos.url = "nixpkgs/nixos-unstable";
|
||||
latest.url = "nixpkgs/nixos-unstable";
|
||||
nixos.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
latest.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
digga.url = "github:divnix/digga/master";
|
||||
|
||||
ci-agent = {
|
||||
|
|
|
@ -6,6 +6,10 @@ in
|
|||
nix.systemFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
|
||||
nix.registry.nixpkgs.flake = self.inputs.nixos;
|
||||
|
||||
# Fix zsh autocompletion with home-manager
|
||||
environment.pathsToLink = [ "/share/zsh" ];
|
||||
|
||||
|
||||
environment = {
|
||||
systemPackages = with pkgs; [
|
||||
binutils
|
||||
|
@ -34,6 +38,7 @@ in
|
|||
tealdeer
|
||||
whois
|
||||
|
||||
nixpkgs-fmt
|
||||
libqalculate
|
||||
nur.repos.xe.comma
|
||||
];
|
||||
|
|
|
@ -2,4 +2,5 @@
|
|||
networking.networkmanager = {
|
||||
enable = true;
|
||||
};
|
||||
networking.firewall.enable = false;
|
||||
}
|
||||
|
|
|
@ -3,5 +3,5 @@ with profiles; rec {
|
|||
base = [ users.root core dnscrypt ];
|
||||
workstation = base ++ [ sway develop game profiles.workstation ssh flatpak torrents pwn tor rust ];
|
||||
desktop = workstation ++ [ users.mae-desk amd three_dee androidev ];
|
||||
lap = workstation ++ [ users.mae-lap laptop bluetooth print networkmanager androidev ];
|
||||
lap = workstation ++ [ users.mae-lap laptop bluetooth print networkmanager ];
|
||||
}
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
{
|
||||
programs.direnv = {
|
||||
enable = true;
|
||||
nix-direnv.enable = true;
|
||||
nix-direnv = {
|
||||
enable = true;
|
||||
enableFlakes = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue