yolo
This commit is contained in:
parent
72c43eef66
commit
ae631b7dd3
3 changed files with 9 additions and 5 deletions
|
@ -21,6 +21,8 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
system.autoUpgrade.channel = "https://nixos.org/channels/nixos-unstable";
|
||||||
|
|
||||||
imports =
|
imports =
|
||||||
[ # Include the results of the hardware scan.
|
[ # Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
@ -30,16 +32,17 @@ in
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
||||||
|
boot.enableContainers = true;
|
||||||
|
|
||||||
networking.hostName = "nix"; # Define your hostname.
|
networking.hostName = "nix"; # Define your hostname.
|
||||||
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
|
||||||
|
|
||||||
# Configure network proxy if necessary
|
# Configure network proxy if necessary
|
||||||
# networking.proxy.default = "http://user:password@proxy:port/";
|
# networking.proxy.default = "http://user:password@proxy:port/";
|
||||||
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
|
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
|
||||||
|
|
||||||
# Enable networking
|
# Enable networking
|
||||||
networking.networkmanager.enable = true;
|
# networking.networkmanager.enable = true;
|
||||||
|
networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||||||
|
|
||||||
# Set your time zone.
|
# Set your time zone.
|
||||||
time.timeZone = "America/New_York";
|
time.timeZone = "America/New_York";
|
||||||
|
|
|
@ -28,9 +28,9 @@ alias ok='okular'
|
||||||
alias ko='kitty .'
|
alias ko='kitty .'
|
||||||
alias du="du -h --total"
|
alias du="du -h --total"
|
||||||
|
|
||||||
#eza
|
#exa
|
||||||
alias ls="eza"
|
alias ls="exa"
|
||||||
alias tree="eza --tree -I target"
|
alias tree="exa --tree -I target"
|
||||||
|
|
||||||
# some more ls aliases
|
# some more ls aliases
|
||||||
# alias ls='ls --color=always'
|
# alias ls='ls --color=always'
|
||||||
|
|
|
@ -28,6 +28,7 @@
|
||||||
home-manager.useUserPackages = true;
|
home-manager.useUserPackages = true;
|
||||||
home-manager.users.mbk = (import ./home.nix) conf;
|
home-manager.users.mbk = (import ./home.nix) conf;
|
||||||
}
|
}
|
||||||
|
(nixpkgs + "/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix")
|
||||||
];
|
];
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue