Idk various stuff too lazy to list

This commit is contained in:
Bad 2021-07-27 11:50:57 +02:00
parent 76dd19a15c
commit affe651726
6 changed files with 19 additions and 8 deletions

View File

@ -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": {

View File

@ -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 = {

View File

@ -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
];

View File

@ -2,4 +2,5 @@
networking.networkmanager = {
enable = true;
};
networking.firewall.enable = false;
}

View File

@ -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 ];
}

View File

@ -1,6 +1,9 @@
{
programs.direnv = {
enable = true;
nix-direnv.enable = true;
nix-direnv = {
enable = true;
enableFlakes = true;
};
};
}