Added gnome stuff
This commit is contained in:
parent
e6b734a680
commit
caafe19839
2 changed files with 28 additions and 3 deletions
|
|
@ -7,8 +7,8 @@
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
./hardware-configuration.nix
|
/etc/nixos/hardware-configuration.nix
|
||||||
./user-jsutter.nix
|
/etc/nixos/user-jsutter.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
|
|
@ -35,7 +35,6 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.hostName = "framework"; # Define your hostname.
|
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
|
|
||||||
# Set your time zone.
|
# Set your time zone.
|
||||||
|
|
@ -136,6 +135,7 @@
|
||||||
bumblebee
|
bumblebee
|
||||||
glxinfo
|
glxinfo
|
||||||
libgdiplus
|
libgdiplus
|
||||||
|
gnome.gnome-tweaks
|
||||||
];
|
];
|
||||||
|
|
||||||
# GNUPG Stuff
|
# GNUPG Stuff
|
||||||
|
|
|
||||||
|
|
@ -23,5 +23,30 @@ in
|
||||||
experimental-features = [ "scale-monitor-framebuffer" ];
|
experimental-features = [ "scale-monitor-framebuffer" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Add Firefox GNOME theme directory
|
||||||
|
home.file."firefox-gnome-theme" = {
|
||||||
|
target = ".mozilla/firefox/default/chrome/firefox-gnome-theme";
|
||||||
|
source = (fetchTarball "https://github.com/rafaelmardojai/firefox-gnome-theme/archive/master.tar.gz");
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.firefox = {
|
||||||
|
enable = true;
|
||||||
|
profiles.default = {
|
||||||
|
name = "Default";
|
||||||
|
settings = {
|
||||||
|
"extensions.activeThemeID" = "firefox-compact-dark@mozilla.org";
|
||||||
|
|
||||||
|
# For Firefox GNOME theme:
|
||||||
|
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
|
||||||
|
"browser.tabs.drawInTitlebar" = true;
|
||||||
|
"svg.context-properties.content.enabled" = true;
|
||||||
|
};
|
||||||
|
userChrome = ''
|
||||||
|
@import "firefox-gnome-theme/userChrome.css";
|
||||||
|
@import "firefox-gnome-theme/theme/colors/dark.css";
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue